home *** CD-ROM | disk | FTP | other *** search
/ Ice Princess Press Kit / Ice Princess Press Kit.iso / pc / program.dxr / Internal_27_Preview Next Behavior.ls < prev    next >
Encoding:
Text File  |  2005-03-02  |  330 b   |  23 lines

  1. on mouseWithin me
  2.   cursor(280)
  3. end
  4.  
  5. on mouseLeave me
  6.   cursor(0)
  7. end
  8.  
  9. on mouseUp me
  10.   cursor(0)
  11.   sound(3).play(member("Click"))
  12.   case the frameLabel of
  13.     "Preview_1A":
  14.       go("Preview_2")
  15.     "preview_2A":
  16.       go("Preview_3")
  17.     "Preview_3a":
  18.       go("Preview_4")
  19.     "Preview_4a":
  20.       go("preview_1")
  21.   end case
  22. end
  23.